home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / system-tools-backends-2.0 / scripts / IfacesConfig.pm < prev    next >
Text File  |  2009-10-20  |  3KB  |  82 lines

  1. #-*- Mode: perl; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  
  3. # DBus object for the network interfaces config
  4. #
  5. # Copyright (C) 2005 Carlos Garnacho
  6. #
  7. # Authors: Carlos Garnacho Parro  <carlosg@gnome.org>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU Library General Public License as published
  11. # by the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. # GNU Library General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU Library General Public License
  20. # along with this program; if not, write to the Free Software
  21. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  22.  
  23. package IfacesConfig;
  24.  
  25. use base qw(StbObject);
  26. use Net::DBus::Exporter ($Utils::Backend::DBUS_PREFIX);
  27. use Network::Ifaces;
  28.  
  29. my $OBJECT_NAME = "IfacesConfig";
  30. my $OBJECT_PATH = "$Utils::Backend::DBUS_PATH/$OBJECT_NAME";
  31. my $format = [[ "array", [ "struct", "string", "int32", "int32", "int32", "string", "string", "string", "string", "string", "string" ]],
  32.               [ "array", [ "struct", "string", "int32", "int32", "int32", "string", "string", "string", "string", "string", "string", "int32", "string", "string", "string" ]],
  33.               [ "array", [ "struct", "string", "int32", "int32", "int32", "string", "string", "string", "string", "string", "string" ]],
  34.               [ "array", [ "struct", "string", "int32", "int32", "string", "string" ]],
  35.               [ "array", [ "struct", "string", "int32", "int32", "string", "string", "string", "string", "int32", "int32", "string", "string", "int32", "int32", "int32", "int32", "string" ]],
  36.               [ "array", "string" ],
  37.               [ "array", "string" ],
  38.               [ "array", "string" ]];
  39.  
  40. sub new
  41. {
  42.   my $class = shift;
  43.   my $self  = $class->SUPER::new ($OBJECT_PATH, $OBJECT_NAME);
  44.  
  45.   bless $self, $class;
  46.  
  47. #  Utils::Monitor::monitor_files (&Users::Groups::get_files (),
  48. #                                 $self, $OBJECT_NAME, "changed");
  49.  
  50.   return $self;
  51. }
  52.  
  53. dbus_method ("get", [], $format);
  54. dbus_method ("set", $format, []);
  55. #dbus_signal ("changed", []);
  56.  
  57. sub get
  58. {
  59.   my ($self) = @_;
  60.   $self->SUPER::reset_counter ();
  61.  
  62.   return &Network::Ifaces::get ();
  63. }
  64.  
  65. sub set
  66. {
  67.   my ($self, @config) = @_;
  68.   $self->SUPER::reset_counter ();
  69.  
  70.   &Network::Ifaces::set ($config[0], $config[1], $config[2],
  71.                          $config[3], $config[4]);
  72. }
  73.  
  74. sub getFiles
  75. {
  76.   return &Network::Ifaces::get_files ();
  77. }
  78.  
  79. my $config = IfacesConfig->new ();
  80.  
  81. 1;
  82.